home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / (A)P / (A)P1.ADF / Cycloids / pointer.h < prev    next >
C/C++ Source or Header  |  1987-05-25  |  501b  |  28 lines

  1. #define  height 14
  2. struct SpriteImage {
  3. UWORD posctl[2];
  4. UWORD sprdata[2][height];
  5. UWORD reserved[2];
  6. };
  7.  
  8. /********************Sprite-Pointer-Defines*********************/
  9.  
  10. struct SpriteImage PointImage = {
  11.    100,100,
  12.    0x0000, 0x3ffe,
  13.    0x0000, 0x3ffe,
  14.    0x0080, 0x3ffe,
  15.    0x0080, 0x1ffc,
  16.    0x0080, 0x1ffc,
  17.    0x0080, 0x0ff8,
  18.    0x0080, 0x0ff8,
  19.    0x0000, 0x07f0,
  20.    0x0080, 0x07f0,
  21.    0x0080, 0x07f0,
  22.    0x0000, 0x03e0,
  23.    0x0000, 0x03e0,
  24.    0x0000, 0x01c0,
  25.    0x0000, 0x8000,
  26.    NULL,NULL
  27. };
  28.